home *** CD-ROM | disk | FTP | other *** search
- //---------------------------------------------------------------------------
- #include <vcl\vcl.h>
- #pragma hdrstop
- //---------------------------------------------------------------------------
- USERES("audio_gui_bcb.res");
- USEFORM("audiomain_bcbx.cpp", GUIForm);
- USEUNIT("..\src\reverb_wave.cpp");
- USELIB("..\..\uspl.lib");
- USEUNIT("..\src\audioc.cpp");
- //---------------------------------------------------------------------------
- WINAPI WinMain(HINSTANCE, HINSTANCE, LPSTR, int)
- {
- try
- {
- Application->Initialize();
- Application->CreateForm(__classid(TGUIForm), &GUIForm);
- Application->Run();
- }
- catch (Exception &exception)
- {
- Application->ShowException(&exception);
- }
- return 0;
- }
- //---------------------------------------------------------------------------
-